home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 4 / CARTS4.iso / mac / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7025.txt < prev    next >
Text File  |  1996-03-22  |  557b  |  21 lines

  1. Pauses until the user presses a keyboard key.
  2.  
  3. GetKeyDown(VAR aCode : INTEGER);
  4.  
  5. Draws a line from a fixed point specified by x1, y1 to a mouse defined point. x2, y2 are not returned until the mouse is clicked
  6.  
  7. GetPtL(x1, y1 : REAL;  VAR x2, y2 : REAL);
  8.  
  9. Returns x, y coordinates by using the mouse. x, y are not returned until the mouse is clicked.
  10.  
  11. GetPt(VAR x, y : REAL);
  12.  
  13. Allows the user to create a line using the mouse.
  14.  
  15. GetLine(VAR x1, y1, x2, y2 : REAL);
  16.  
  17. Allows the user to create a rectangle using the mouse.
  18.  
  19. GetRect(VAR x1, y1, x2, y2 : REAL);
  20.  
  21.